home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / sfocal.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  924 b   |  31 lines

  1. .TH SFOCAL
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. SFOCAL
  5.  
  6.  
  7.  
  8.  SurfaceType SFOCAL( SurfaceType Srf, NumericType Dir )
  9.  
  10. Evaluates the focal surface field of surface Srf using the normal
  11. curvature in the isoparametric direction as given by Dir (either
  12. ROW or COL). Note this function is not using the principal curvatures as
  13. is generaly the case for focal surfaces.
  14.  
  15. Example:
  16.  
  17.     gcross = cbspline( 3,
  18.                        list( ctlpt( E3, 0.3, 0.0, 0.0 ),
  19.                              ctlpt( E3, 0.1, 0.0, 0.1 ),
  20.                              ctlpt( E3, 0.1, 0.0, 0.4 ),
  21.                              ctlpt( E3, 0.5, 0.0, 0.5 ),
  22.                              ctlpt( E3, 0.6, 0.0, 0.8 ) ),
  23.                        list( KV_OPEN ) );
  24.     glass = surfprev( gcross );
  25.     color( glass, red );
  26.     
  27.     gfocal = SFOCAL(glass, col);
  28.  
  29. Evaluates the focal surface using the COL isoparametric direction's
  30. normal curvature of the glass surface.
  31.